:root {
    --navy-dark: #4C1D95;
    --navy-primary: #7C3AED;
    --blue-accent: #06B6D4;
    --light-navy: #F3F4F6;
    --lighter-navy: #F9FAFB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html body {
  font-family: 'Google Sans Display', Arial, Helvetica, sans-serif !important;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero-section {
    background: linear-gradient(135deg, #1a73e8 0%, #4285f4 25%, #667eea 50%, #764ba2 75%, #f093fb 100%);
    color: white;
    min-height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary-custom {
    background: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    color: var(--navy-dark);
}

.btn-primary-custom:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
    color: var(--navy-dark);
}

.animated-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
}

.section-padding {
    padding: 80px 0;
}

.bg-light-navy {
    background-color: var(--light-navy);
}

.bg-lighter-navy {
    background-color: var(--lighter-navy);
}

ol, ul {
      padding-left: 0rem;
    }

.card-custom {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.signup-form-container {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 100%);
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(11, 30, 79, 0.3);
}

.signup-header {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
}

.signup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
}

.signup-form-card {
    background: white;
    padding: 3rem;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
}

.progress-line {
    width: 80px;
    height: 2px;
    background: #e9ecef;
    margin: 0 1rem;
}



.form-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.section-title {
    color: var(--navy-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-navy);
}

.form-group-advanced {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control-advanced {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control-advanced:focus {
    outline: none;
    border-color: var(--blue-accent);
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(59, 130, 246, 0.1);
}

.form-control-advanced:focus + label {
    color: var(--blue-accent);
    transform: translateY(-2.5rem) scale(0.85);
}

.form-control-advanced:not(:placeholder-shown) + label,
.form-control-advanced:valid + label {
    transform: translateY(-2.5rem) scale(0.85);
    color: var(--navy-primary);
}

.form-group-advanced label {
    position: absolute;
    top: 1rem;
    left: 3.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
    pointer-events: none;
    background: transparent;
    padding: 0 0.5rem;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #6c757d;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control-advanced:focus ~ .form-icon {
    color: var(--blue-accent);
}

.custom-checkbox {
    position: relative;
    padding-left: 2rem;
    margin: 1.5rem 0;
}

.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--blue-accent);
    border-color: var(--blue-accent);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.btn-navy {
    background: var(--navy-dark);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-navy:hover {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
    transform: translateY(-2px);
}

.btn-submit-advanced {
    position: relative;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    border: none;
    border-radius: 20px;
    padding: 0;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    min-width: 220px;
    height: 60px;
}

.btn-submit-advanced:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.btn-submit-advanced:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-loader {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-submit-advanced.loading .btn-icon,
.btn-submit-advanced.loading .btn-text {
    opacity: 0;
}

.btn-submit-advanced.loading .btn-loader {
    opacity: 1;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-submit-advanced:hover .btn-shine {
    left: 100%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.accordion-item {
    border: none;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.accordion-button {
    background: white;
    border: none;
    font-weight: 600;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background: rgba(59, 130, 246, 0.02);
    color: var(--navy-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    background-image: none;
    content: '+';
    font-size: 1.2rem;
    font-weight: bold;
}

.accordion-button:not(.collapsed)::after {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
    transform: rotate(45deg);
}

.accordion-body {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

/* Advanced FAQ Styles */
.faq-header-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.faq-search-container {
    max-width: 500px;
    margin: 2rem auto 0;
}

.faq-search-box {
    position: relative;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1.1rem;
    z-index: 2;
}

.faq-search-input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    line-height: 1.2;
}

.faq-search-input::placeholder {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.2;
}

.faq-categories {
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    background: white;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tab:hover {
    border-color: var(--blue-accent);
    color: var(--blue-accent);
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-color: var(--blue-accent);
    color: white;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.02);
}

.faq-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
}

.faq-content h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: var(--navy-dark);
    font-size: 1.2rem;
}

.faq-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.faq-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-accent);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-accent);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
}

.faq-answer-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.faq-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: #4a5568;
}

.faq-list li i {
    color: #22c55e;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.commission-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.tier-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tier-card.elite {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-color: #f59e0b;
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tier-rate {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tier-requirement {
    font-size: 0.9rem;
    opacity: 0.8;
}

.payment-schedule {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid var(--blue-accent);
}

.schedule-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.schedule-info h6 {
    margin: 0 0 0.5rem 0;
    color: var(--navy-dark);
    font-weight: 700;
}

.schedule-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.requirement-info {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.requirement-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid;
}

.requirement-card.positive {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
    color: #15803d;
}

.requirement-card.neutral {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
    color: var(--navy-dark);
}

.requirement-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.requirement-card h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.requirement-card p {
    margin: 0;
    font-size: 0.9rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.support-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.support-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.support-item i {
    font-size: 2.5rem;
    color: var(--blue-accent);
    margin-bottom: 1rem;
}

.support-item h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: var(--navy-dark);
}

.support-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.timeline-container {
    position: relative;
    margin: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-accent), var(--navy-primary));
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    z-index: 2;
    position: relative;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.timeline-content h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: var(--navy-dark);
}

.timeline-content p {
    margin: 0 0 0.5rem 0;
    color: #6c757d;
}

.timeline-duration {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-accent);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.faq-helpful {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.faq-helpful span {
    color: #6c757d;
    font-weight: 600;
}

.helpful-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    background: white;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover {
    border-color: var(--blue-accent);
    color: var(--blue-accent);
    transform: scale(1.1);
}

.helpful-btn.active {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-color: var(--blue-accent);
    color: white;
}

.faq-footer {
    margin-top: 4rem;
}

.faq-contact-card {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy-primary));
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.faq-contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.contact-content {
    position: relative;
    z-index: 2;
}

.contact-content h5 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.testimonial-slide-group {
    display: flex;
    width: 25%;
    gap: 20px;
    padding: 0 10px;
}

.testimonial-slide {
    flex: 1;
    min-width: 0;
}

.testimonial-card-advanced {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-advanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* .slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--blue-accent);
    border-radius: 50%;
    background: white;
    color: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
} */

.slider-btn:hover {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    transform: scale(1.2);
}

.dot:hover {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    transform: scale(1.1);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue-accent);
    border-radius: 50%;
    background: white;
    color: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    color: white;
}

.control-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin: 1.5rem 0;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.avatar-advanced,
.slider-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border: 3px solid white;
}

.author-info {
    flex: 1;
}

.author-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
 }

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--blue-accent);
    display: block;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #6c757d;
}

.resource-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.eligibility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue-accent), var(--navy-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.eligibility-check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(34, 197, 94, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Extra Small Devices (phones, 320px and up) */
@media (max-width: 575px) {
    .hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .btn-primary-custom {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }

    .section-padding {
        padding: 30px 0;
    }

    .display-5 {
        font-size: 1.8rem !important;
    }

    .lead {
        font-size: 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .card-custom {
        margin-bottom: 1rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .eligibility-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .signup-header {
        padding: 2rem 1rem;
    }

    .signup-form-card {
        padding: 1.5rem 1rem;
        margin-top: -20px;
    }

    .form-progress {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .progress-step {
        flex-direction: row;
        gap: 0.5rem;
    }

    .progress-line {
        display: none;
    }

    .form-control-advanced {
        padding: 0.8rem 0.8rem 0.8rem 2.8rem;
        font-size: 0.9rem;
        min-height: 48px;
    }

    .form-group-advanced label {
        left: 2.8rem;
        font-size: 0.85rem;
    }

    .form-icon {
        left: 0.8rem;
        font-size: 1rem;
    }

    .btn-submit-advanced {
        min-width: 100%;
        height: 50px;
    }

    .btn-content {
        padding: 15px 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .btn-navy {
        width: 100%;
        padding: 15px;
    }

    .faq-header-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .faq-search-container {
        margin: 1.5rem auto 0;
        padding: 0 1rem;
    }

    .category-tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }

    .category-tab {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 0 1rem 1.5rem 1rem;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .faq-content h5 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .faq-tags {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .faq-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }

    .commission-tiers {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .tier-card {
        padding: 1rem;
    }

    .tier-rate {
        font-size: 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .support-item {
        padding: 1rem;
    }

    .timeline-container::before {
        left: 15px;
    }

    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
        margin-right: 0.8rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .testimonial-slide-group {
        flex-direction: column;
        gap: 15px;
        padding: 0 5px;
    }

    .testimonial-card-advanced {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .avatar-advanced {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .slider-navigation {
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .control-text {
        font-size: 0.8rem;
        text-align: center;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .faq-contact-card {
        padding: 2rem 1rem;
    }

    .contact-content h5 {
        font-size: 1.5rem;
    }

    .contact-content p {
        font-size: 0.95rem;
    }

    .animated-arrow {
        bottom: 20px;
        font-size: 1.5rem;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .col-12, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.8rem;
    }

    .btn-primary-custom {
        padding: 14px 30px;
        font-size: 1rem;
        max-width: 320px;
    }

    .section-padding {
        padding: 45px 0;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .stat-card {
        padding: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .signup-header {
        padding: 2.5rem 1.5rem;
    }

    .signup-form-card {
        padding: 2.5rem 2rem;
    }

    .form-progress {
        margin-bottom: 2rem;
        flex-direction: row;
    }

    .progress-line {
        width: 60px;
        display: block;
    }

    .form-control-advanced {
        padding: 1rem 1rem 1rem 3.2rem;
        font-size: 0.95rem;
    }

    .form-group-advanced label {
        left: 3.2rem;
        font-size: 0.9rem;
    }

    .form-icon {
        left: 1rem;
    }

    .btn-submit-advanced {
        min-width: 250px;
    }

    .form-navigation {
        flex-direction: row;
        justify-content: space-between;
    }

    .btn-navy {
        width: auto;
        padding: 12px 25px;
    }

    .category-tabs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .category-tab {
        width: auto;
        min-width: 140px;
        padding: 12px 20px;
    }

    .accordion-button {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 1.5rem 2rem 1.5rem;
    }

    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .faq-content h5 {
        font-size: 1.05rem;
    }

    .commission-tiers {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .tier-card {
        padding: 1.2rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .timeline-container::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 1rem;
    }

    .timeline-content {
        padding: 1.2rem;
    }

    .testimonial-slide-group {
        flex-direction: column;
        gap: 20px;
        padding: 0 8px;
    }

    .testimonial-card-advanced {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .avatar-advanced {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-controls {
        flex-direction: row;
        justify-content: center;
    }

    .control-text {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .faq-contact-card {
        padding: 2.5rem 2rem;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }

    .btn-primary-custom {
        padding: 15px 35px;
        font-size: 1.05rem;
        max-width: 350px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .display-5 {
        font-size: 2.5rem !important;
    }

    .step-icon {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .benefit-icon {
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .signup-header {
        padding: 3rem 2rem;
    }

    .signup-form-card {
        padding: 3rem 2.5rem;
    }

    .form-control-advanced {
        padding: 1rem 1rem 1rem 3.5rem;
        font-size: 1rem;
    }

    .form-group-advanced label {
        left: 3.5rem;
        font-size: 0.95rem;
    }

    .form-icon {
        left: 1rem;
        font-size: 1.1rem;
    }

    .btn-submit-advanced {
        min-width: 280px;
        height: 55px;
    }

    .category-tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .category-tab {
        min-width: 160px;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .accordion-button {
        padding: 1.8rem;
        font-size: 1.05rem;
    }

    .accordion-body {
        padding: 0 1.8rem 2rem 1.8rem;
    }

    .faq-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .faq-content h5 {
        font-size: 1.1rem;
    }

    .commission-tiers {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .tier-card {
        padding: 1.5rem;
    }

    .tier-rate {
        font-size: 1.8rem;
    }

    .support-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .support-item {
        padding: 1.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        margin-right: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .testimonial-slide-group {
        flex-direction: row;
        gap: 15px;
        padding: 0 10px;
    }

    .testimonial-slide {
        flex: 1;
        min-width: 280px;
    }

    .testimonial-card-advanced {
        padding: 2.2rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
    }

    .avatar-advanced {
        width: 58px;
        height: 58px;
        font-size: 1.25rem;
    }

    .slider-btn {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .faq-contact-card {
        padding: 3rem 2.5rem;
    }

    .contact-content h5 {
        font-size: 1.8rem;
    }

    .contact-content p {
        font-size: 1.05rem;
    }

    .animated-arrow {
        font-size: 2rem;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .testimonial-slide-group {
        gap: 20px;
    }

    .testimonial-slide {
        min-width: 280px;
    }

    .commission-tiers {
        grid-template-columns: repeat(3, 1fr);
    }

    .support-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .testimonial-slide-group {
        gap: 20px;
    }

    .testimonial-slide {
        min-width: 350px;
    }
}

/* Ultra Wide Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .section-padding {
        padding: 45px 0;
    }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .animated-arrow {
        display: none;
    }

    .section-padding {
        padding: 3rem 0;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before {
        background-size: 50px 50px;
    }
}

/* Print styles */
@media print {
    .hero-section,
    .testimonial-slider-container,
    .signup-form-container,
    .animated-arrow,
    .slider-navigation,
    .slider-controls,
    .btn,
    button {
        display: none !important;
    }

    .section-padding {
        padding: 1rem 0;
    }

    .card-custom {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .faq-item {
        box-shadow: none;
        border: 1px solid #ddd;
        margin-bottom: 0.5rem;
    }

    .faq-answer {
        max-height: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Accessibility improvements for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .animated-arrow {
        animation: none;
    }

    .faq-header-icon {
        animation: none;
    }

    .hero-section::before {
        animation: none;
    }

    .faq-contact-card::before {
        animation: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --navy-dark: #1a2332;
        --navy-primary: #2563eb;
        --blue-accent: #60a5fa;
        --light-navy: #1f2937;
        --lighter-navy: #374151;
    }
}

/* Container adjustments for better spacing */
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Responsive container padding */
@media (max-width: 575px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

/* Flexible grid system for all components */
.responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefits-responsive-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stats-responsive-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (max-width: 575px) {
    .responsive-grid,
    .testimonial-responsive-grid,
    .benefits-responsive-grid,
    .stats-responsive-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .benefits-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .benefits-responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-responsive-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Improved touch targets for mobile */
@media (max-width: 767px) {
    .btn,
    button,
    .slider-btn,
    .dot,
    .helpful-btn,
    .category-tab {
        min-height: 44px;
        min-width: 44px;
    }

    .form-control-advanced {
        min-height: 48px;
    }

    .accordion-button {
        min-height: 60px;
    }
}

/* Sticky elements adjustments */
@media (max-width: 991px) {
    .form-progress {
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        padding: 1rem 0;
        margin-bottom: 1rem;
        border-bottom: 1px solid #e9ecef;
        border-radius: 0;
    }
}

/* Overflow handling for small screens */
@media (max-width: 575px) {
    body {
        overflow-x: hidden;
    }

    .row {
        margin-left: -5px;
        margin-right: -5px;
    }

    .col-12, .col-md-6, .col-lg-3, .col-lg-4, .col-lg-6 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .testimonial-slider-container {
        overflow: hidden;
    }

    .slider-navigation {
        padding: 0 10px;
    }
}

/* Enhanced responsive typography */
@media (max-width: 575px) {
    h1, .h1 { font-size: 1.8rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.3rem; }
    h4, .h4 { font-size: 1.1rem; }
    h5, .h5 { font-size: 1rem; }
    h6, .h6 { font-size: 0.9rem; }

    p, .lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    h1, .h1 { font-size: 2.2rem; }
    h2, .h2 { font-size: 1.8rem; }
    h3, .h3 { font-size: 1.5rem; }
    h4, .h4 { font-size: 1.25rem; }
    h5, .h5 { font-size: 1.1rem; }

    p, .lead {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    h1, .h1 { font-size: 2.5rem; }
    h2, .h2 { font-size: 2rem; }
    h3, .h3 { font-size: 1.7rem; }
    h4, .h4 { font-size: 1.4rem; }
    h5, .h5 { font-size: 1.2rem; }

    p, .lead {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}

/* Responsive spacing utilities */
@media (max-width: 575px) {
    .mb-5 { margin-bottom: 2rem !important; }
    .mb-4 { margin-bottom: 1.5rem !important; }
    .mb-3 { margin-bottom: 1rem !important; }
    .mt-5 { margin-top: 2rem !important; }
    .mt-4 { margin-top: 1.5rem !important; }
    .mt-3 { margin-top: 1rem !important; }
}

/* Responsive image handling */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Responsive table handling */
@media (max-width: 767px) {
    .table-responsive {
        font-size: 0.8rem;
    }
}


/* ===== Root Colors ===== */
:root {
    --neon-lime: #32ff32;
    --hot-pink: #ff1493;
    --electric-blue: #00bfff;
    --bright-purple: #8a2be2;
    --dark-bg: #0a0a0a;
}

/* ===== Section & Layout ===== */
.influencer-signup-main-section {
    /* background: linear-gradient(90deg, #4f46e5, #9333ea); */
background: linear-gradient(90deg, #ffffff, #cce4ff, #ffffff);


    padding: 3rem 0;
}


.influencer-signup-main-section .container-fluid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.signup-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* box-shadow: 0 32px 64px rgba(0, 0, 0, 0.1),
                0 16px 32px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.6); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.signup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.signup-card:hover::before {
    left: 100%;
}

.signup-card:hover {
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15),
                0 20px 40px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8); */
}

/* ===== Section Header ===== */
.section-header {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 24px;
    animation: slideInUp 0.6s ease-out;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-header:hover::after { width: 100px; }

.section-header i {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===== Form Controls ===== */
.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-control:focus, .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1),
                0 8px 16px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.form-control:hover:not(:focus), .form-select:hover:not(:focus) {
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 0.025em;
}

/* ===== Input Groups ===== */
.input-group {
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* .input-group:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    transform: translateY(-1px);
} */

.input-group-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 18px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 16px 16px 0;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: scale(1.05);
}



#businessDocs {
  background: none;
  border: none;
  color: #000;
}

#businessDocs::file-selector-button {
  background: none;
  border: none;                 
  border-right: 1px solid #ccc; /* <-- add color here */
  color: #000;
  cursor: pointer;
  padding: 6px 8px 2px 2px;   /* ← padding-right = 16px creates gap */
}










.woi-input-group {
     border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

 

.woi-input-group-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 16px 18px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.woi-input-group .form-control {
    border-left: none;
    border-radius: 0 16px 16px 0;
    box-shadow: none;
}

.woi-input-group:focus-within .woi-input-group-text {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: scale(1.05);
}










/* ===== Buttons ===== */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border: none;
    border-radius: 16px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(102,126,234,0.3), 0 4px 8px rgba(0,0,0,0.1);
}

/* ===== Suggestions Pills ===== */
.suggestions-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: #fff;
    border: 1px solid rgba(49,49,49,0.15);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

.suggestion-pill:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* ===== Pulse Glow Button ===== */
.grow-your-influence-btn {
    background: linear-gradient(to right, var(--neon-lime), var(--electric-blue));
    padding: 12px 24px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease-in-out;
    animation: pulse-glow 1.5s infinite alternate;
}

.grow-your-influence-btn:hover { transform: scale(1.1); }

@keyframes pulse-glow { 
    0% { background-color: var(--neon-lime); }
    100% { background-color: var(--electric-blue); }
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; }
}



.joincard-section{
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 60px;
 }


.reseller-number ul.reseller-country li {
  display: flex;
  justify-content: flex-start;    
  align-items: center;            
  gap: 10px;                     
  padding: 8px 12px;             
  cursor: pointer;
}

.reseller-number ul.reseller-country li:hover {
  background-color: #f5f5f5;     
}



      .reseller-addon{
        font-size: 12px;
        color: var(--muted);
        padding: 6px 8px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background: #f8fafc;
        white-space: nowrap;
      }

.banner-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
 
 
    padding: 10px 14px !important;
    font-size: 14px !important;
    letter-spacing: 0.2px !important;
    cursor: pointer !important;
 
    
}




























.resellerwoi1-hero {
    display: flex;
    justify-content: space-between;  
    align-items: center;
    gap: 50px;
}

.resellerwoi-image {
    display: flex;
    justify-content: center;  
    align-items: center;
    flex:3;
}

.resellerwoi-image img {
    max-width: 450px;   /* reduce size */
    height: auto;       
    border-radius: 20px;
}

/* On mobile, stack them and center */
@media (max-width: 768px) {
    .resellerwoi1-hero {
        flex-direction: column;
        text-align: center;
    }

    .resellerwoi-image {
        justify-content: center;
        margin-top: 20px;
    }
}


.resellerwoi1-hero {
  background-size: cover;
  background-position: right center;
  min-height: clamp(520px, 65vh, 720px);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.resellerwoi1-container {
  display: flex;
  justify-content: start;
  text-align: start;
  padding: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}

.resellerwoi1-content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Pill, Heading, Sub, Button */
.resellerwoi1-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--pill-bg, #1f1f1f);
  color: var(--text, #fff);
  border: 1px solid var(--pill-border, #333);
  border-radius: 9999px;
  padding: 10px 16px;
  font-size: 14px;
  letter-spacing: 0.2px;
  margin-bottom: 18px;
}

.resellerwoi1-h1 {
  color: black;
  font-weight: 600;
  margin-bottom: 18px;
  font-size: 2.9rem;
  line-height: 1.1666666667;
  letter-spacing: -.5px !important;
}

.resellerwoi1-sub {
  color: var(--muted, #ccc);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 28px;
}

.resellerwoi1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--primary, #2b78ff);
  color: #fff;
  border: 0;
  border-radius: var(--radius, 8px);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(43, 120, 255, 0.35);
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.resellerwoi1-btn:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 10px 22px rgba(43,120,255,0.45); 
}
.resellerwoi1-btn:active { 
  transform: translateY(0); 
  box-shadow: 0 6px 18px rgba(43,120,255,0.35); 
}
.resellerwoi1-btn:focus { 
  outline: 2px solid #9bc1ff; 
  outline-offset: 2px; 
  border-radius: calc(var(--radius,8px) + 2px); 
}

/* --- Responsive Hero Adjustments --- */
@media (max-width: 1024px) {
  .resellerwoi1-hero { background-position: center; }
  .resellerwoi1-container { padding: 20px; }
  .resellerwoi1-content { max-width: 100%; }
}

@media (max-width: 640px) {
  .resellerwoi1-content { padding-left: 8px; align-items: center; text-align: center; }
  .resellerwoi1-pill { font-size: 13px; padding: 8px 12px; }
  .resellerwoi1-h1 { font-size: clamp(28px, 8vw, 48px); }
  .resellerwoi1-sub { font-size: clamp(14px, 4vw, 16px); }
  .resellerwoi1-btn { padding: 12px 20px; font-size: 15px; }
}

/* Gradient background for small screens */
/* @media (max-width: 640px) {
  .resellerwoi1-hero {
      background-image: linear-gradient(180deg, #1a73e8 0%, #1a73e8 100%) !important; 
      background-size: cover !important;
      background-position: center !important;
  }
} */
/* --- Small Screen Hero Adjustments --- */
@media (max-width: 768px) {

  /* Stack content and image */
  .resellerwoi1-hero {
      flex-direction: column;
      text-align: center;
      gap: 20px; /* spacing between content and image */
      padding: 20px;
  }

  /* Center image and reduce size */
  .resellerwoi-image {
      justify-content: center;
      margin-top: 20px;
      flex: unset; /* remove flex-grow */
  }

  .resellerwoi-image img {
      max-width: 80%;  /* smaller for mobile */
      height: auto;
      border-radius: 16px;
  }

  /* Center content */
  .resellerwoi1-content {
      max-width: 100%;
      align-items: center;
      text-align: center;
  }

  /* Adjust headings and subtext */
  .resellerwoi1-h1 {
      font-size: clamp(24px, 6vw, 36px);
      line-height: 1.2;
  }

  .resellerwoi1-sub {
      font-size: clamp(14px, 4vw, 16px);
      margin-bottom: 20px;
  }

  /* Buttons */
  .resellerwoi1-btn {
      width: 100%;  /* full-width on mobile */
      padding: 12px 20px;
      font-size: 15px;
  }
}


 

 
.btn-spacing {
    margin-right: 8px; 
}

.btn-spacing:last-child {
    margin-right: 0;  
}








@media (max-width: 768px){
    .ressellerpadiing{
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .reseller-grid .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 8px;
        padding-right: 8px;
        box-sizing: border-box;
    }

    .reseller-woi5 {
        margin-bottom: 16px;
    }.reseller-woi5{
        padding: 0px;
    }.reseller-woi5-number{
        font-size: 24px !important;
    }.reseller-woi5-text{
        font-size: 12px !important;
    }
}





.resseller-card-content li {
        margin-bottom: 4px;
    font-size: 13px;
}



.ressellerwoi4-shell{
   margin: clamp(16px, 3vw, 48px) auto;
  padding: clamp(12px, 2vw, 16px);
}

/* Left panel */
.ressellerwoi4-panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ressellerwoi4-left{
  /* padding: 28px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ressellerwoi4-brand{
  display: flex; align-items: center; gap: 10px;
}
.ressellerwoi4-brand-badge{
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--primary);
  color: #fff; display: grid; place-items: center;
  font-weight: 700; letter-spacing: .5px;
}
.ressellerwoi4-headline{
  font-size: clamp(20px, 3vw, 28px);
  margin: 4px 0 6px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.ressellerwoi4-sub{
  color: var(--muted);
  font-size: 14px;
}

.ressellerwoi4-stepper{
  display: grid; gap: 10px;
}
.ressellerwoi4-step{
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fbfdff;
}
.ressellerwoi4-step .ressellerwoi4-idx{
  width: 28px; height: 28px; display: grid; place-items: center;
  border-radius: 8px; font-weight: 700; color:#fff; background:#94a3b8;
}
.ressellerwoi4-step.active{ border-color: rgba(37,99,235,.35); background: #f3f7ff; }
.ressellerwoi4-step.active .ressellerwoi4-idx{ background: var(--primary); }
.ressellerwoi4-step small{ color: var(--muted); display:block; margin-top: 2px;}

.ressellerwoi4-bullets{ margin: 4px 0 0; padding: 0 0 0 18px;}
.ressellerwoi4-bullets li{ margin: 8px 0; color: var(--muted); }

/* Right panel / form */
.ressellerwoi4-right{
  padding: clamp(18px, 2.4vw, 28px);
}
.ressellerwoi4-title{
  text-align: center;
  margin: 4px 0 18px;
}
.ressellerwoi4-title h1{
  margin: 0 0 6px;
  font-size: 45px;
   font-weight: 900;
  letter-spacing: -0.4px;
}
.ressellerwoi4-title p{ color: var(--muted); margin: 0; }

.ressellerwoi4-form{
  display: grid;
  gap: 22px;
}

.ressellerwoi4-section{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}
.ressellerwoi4-section h2{
  margin: 0 0 12px;
  font-size: 15px; letter-spacing: .2px;
  text-transform: uppercase;
  color: var(--muted);
}
.ressellerwoi4-grid{
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px){
  .ressellerwoi4-grid.ressellerwoi4-cols-2{ grid-template-columns: 1fr 1fr 1fr; }
}

label{
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 6px;
}
.ressellerwoi4-field{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fcfdff;
     outline: none !important;
    box-shadow: none !important; 
}
.ressellerwoi4-field input, 
.ressellerwoi4-field select{
  border: none; outline: none; background: transparent;
  width: 100%; font-size: 15px; color: var(--text);
}
/* .ressellerwoi4-field:focus-within{
  border-color: var(--primary);
  box-shadow: 0 0 0 6px var(--ring);
} */
.ressellerwoi4-addon{
  font-size: 12px;
  color: var(--muted);
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f8fafc;
  white-space: nowrap;
}

.ressellerwoi4-hint{ color: var(--muted); font-size: 12px; margin-top: 6px; }

.ressellerwoi4-strength{
  display:flex; align-items:center; gap:10px; margin-top:8px;
}
.ressellerwoi4-bar{
  height: 6px; border-radius: 999px; background: #e2e8f0; width: 100%;
  position: relative; overflow: hidden;
}
.ressellerwoi4-bar::after{
  content:""; position:absolute; inset:0; width:40%;
  background: linear-gradient(90deg, #f59e0b, #eab308 60%, #94a3b8);
}
.ressellerwoi4-strength span{ font-size: 12px; color: var(--muted); }

/* footer / consent + CTA */
.ressellerwoi4-consent{
  display: grid; gap: 12px; align-items: start;
}
.ressellerwoi4-actions{
  display: flex; justify-content: center;
}
.ressellerwoi4-btn{
  border: 0; cursor: pointer;
  padding: 14px 18px;
   border-radius: 12px;
  background: #1a73e8;
   color:#fff; font-weight: 700;
  letter-spacing: .2px; width: 100%;
  transition: transform .04s ease, box-shadow .2s ease;
 }
 .ressellerwoi4-btn:active{ transform: translateY(0); }

.ressellerwoi4-legal a{ color: var(--primary); text-decoration: none; }
.ressellerwoi4-legal a:hover{ text-decoration: underline; }

.ressellerwoi4-chip{
  font-size: 12px; color: #fff; background: var(--primary);
  border-radius: 8px; padding: 4px 8px; font-weight: 700;
}


:root{
  --bg: #f6fbf6;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --primary: #2563eb;
  --accent: #10b981;
  --border: #e5e7eb;
  --ring: rgba(37, 99, 235, 0.25);
  --radius: 20px;
}

/* --- Responsive adjustments for small screens --- */
@media (max-width: 768px) {
    
    /* Hide the left aside panel */
    .ressellerwoi4-left {
        display: none;
    }

    /* Make the right panel full width */
    .ressellerwoi4-right {
        width: 100%;
        padding: 16px; /* optional padding for mobile */
    }

    /* Stack main container */
    .ressellerwoi4-app {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* Adjust form sections to be single column */
    .ressellerwoi4-grid.ressellerwoi4-cols-2 {
        display: flex;
        flex-direction: column;
         gap: 12px;
    }

    /* Adjust headings and text */
    .ressellerwoi4-title h1 {
        font-size: clamp(28px, 6vw, 36px);
        text-align: center;
    }

    .ressellerwoi4-title p {
        text-align: center;
        font-size: 14px;
    }

    /* Buttons full width */
    .ressellerwoi4-btn {
        width: 100%;
    }
}







@media (max-width: 1024px) {
        .ressellerwoi4-grid.ressellerwoi4-cols-2 {
        display: flex;
        flex-direction: column;
         gap: 12px;
    }.resellerwoi_v3_pass{
        margin-top: 10px;
    }

}




















.ressellerwoi4-field textarea.in {
  border: none;       
  outline: none;       
  background: transparent; 
  resize: vertical;    
  width: 100%;        
  font-size: 15px;     
  color: var(--text);  
}



.ressellerwoi4-left {
  padding:0px 28px ;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ressellerwoi4-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ressellerwoi4-brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: .5px;
}

.ressellerwoi4-headline {
  font-size: clamp(20px, 3vw, 28px);
  margin: 4px 0 6px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.ressellerwoi4-sub {
  color: var(--muted);
  font-size: 14px;
}

.ressellerwoi4-stepper {
  display: grid;
  gap: 10px;
}

.ressellerwoi4-step {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fbfdff;
}

.ressellerwoi4-step .ressellerwoi4-idx {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  background: #94a3b8;
}

.ressellerwoi4-step.active {
  border-color: rgba(37,99,235,.35);
  background: #f3f7ff;
}

.ressellerwoi4-step.active .ressellerwoi4-idx {
  background: var(--primary);
}

.ressellerwoi4-step small {
  color: var(--muted);
  display: block;
  margin-top: 2px;
}

.ressellerwoi4-bullets {
  margin: 4px 0 0;
  padding: 0 0 0 18px;
}

.ressellerwoi4-bullets li {
  margin: 8px 0;
  color: var(--muted);
}

/* Right panel / form */
.ressellerwoi4-right {
  padding: clamp(18px, 2.4vw, 28px);
}

.ressellerwoi4-title {
  text-align: center;
  margin: 4px 0 18px;
}

.ressellerwoi4-title h1 {
  margin: 0 0 6px;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 900;
  letter-spacing: -0.4px;
}

.ressellerwoi4-title p {
  color: var(--muted);
  margin: 0;
}

.ressellerwoi4-form {
  display: grid;
  gap: 22px;
}


.ressellerwoi4-app{
    display: flex;
    justify-content: space-between;
}


.ressellerwoi4-field textarea {
  height: 28px;             
  resize: none;              
   line-height: 1.4;          
  border: 1px solid var(--border, #ccc);
  border-radius: 6px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.ressellerwoi4-field input[type="file"] {
  display: block;
  width: 100%;
  height: 28px;               
   font-size: 14px;
  cursor: pointer;
  background-color: #fff;
}











.ressellerrrr-how-it-works-section {
    background: #f9fafd;
}

.ressellerrrr-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.ressellerrrr-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
}

.ressellerrrr-how-step-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
 }
 
.ressellerrrr-step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
}

.bg-gradient-primary { background: linear-gradient(45deg, #2563eb, #3b82f6); }
.bg-gradient-success { background: linear-gradient(45deg, #10b981, #34d399); }
.bg-gradient-warning { background: linear-gradient(45deg, #f59e0b, #fbbf24); }
.bg-gradient-danger  { background: linear-gradient(45deg, #ef4444, #f87171); }

.ressellerrrr-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ressellerrrr-step-desc {
    font-size: 0.9rem;
    color: #6b7280;
}






/* Section Background */
.resseller-join-program {
    background: #f9fafd;
    padding: 60px 0;
}

/* Section Titles */
.resseller-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.resseller-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
}




/* Card Styling */
.resseller-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    border: 1px solid var(--border);
    /* text-align: center; */
}

/* Benefit Icon - remove bg */
.resseller-benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    font-size: 28px;
    /* background removed */
}

/* Individual icon colors */
.resseller-benefit-icon i.fa-percentage { color: #2563eb; }  /* Blue */
.resseller-benefit-icon i.fa-bullhorn   { color: #10b981; }  /* Green */
.resseller-benefit-icon i.fa-clock      { color: #f59e0b; }  /* Orange */
.resseller-benefit-icon i.fa-headset    { color: #ef4444; }  /* Red */
.resseller-benefit-icon i.fa-shipping-fast { color: #0ea5e9; } /* Cyan */
.resseller-benefit-icon i.fa-trophy     { color: #d97706; }  /* Gold/Brown */

/* Card Titles & Description */
.resseller-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.resseller-card-desc {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.reseller-woi5 {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: inset !important;
}

 .reseller-woi5 {
    border-right: 1px solid #e5e7eb !important;  
}

 .col-lg-3:last-child .reseller-woi5 {
    border-right: none !important;
}


.reseller-woi5-number{
        font-size: 2rem;
    font-weight: 700;
    color: black;
    display: block;
}


 @media (max-width: 991px) { 
    .col-md-6 {
        flex: 0 0 50%;    
        max-width: 50%;
    }
}

@media (max-width: 576px) { /* Small screens (mobile) */
    .col-md-6 {
        flex: 0 0 100%;  /* full width on very small screens */
        max-width: 100%;
    }
}


.ressellerwoi4-consent-agree{
    display: flex;
    align-content: center;
    gap: 10px;
    text-align: center;

}






.woi_v1_ref_01 {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;      
    gap: 8px;             
}

.woi_v1_ref_01 .suggestion-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 17px !important;
     background: #f1f3f5;      
    color: #333;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: none !important;
}

.woi_v1_ref_01 .suggestion-pill:hover {
    background: #e2e6ea;      
}



 .no-hover-transition {
     box-shadow: none !important;         
    outline: none;           
    transition: none !important;          
    background-color: #f9fafb;  
}

 .no-hover-transition:focus {
    border: 1px solid gray ;  
    outline: none;              
    box-shadow: none;           
    transition: none !important;        
}



@media (max-width: 768px){
  .woi-v1-filed{
    margin-top: 10px;
  }
}






.resseler_woi_v1_container {
    display: flex;
    /* max-width: 1200px; */
    gap: 70px;
    align-items: center;
    /* justify-content: space-between; */
    margin-top: 90px !important;
    margin-bottom: 30px !important;
}

.resseler_woi_v1_content {
    flex: 1;
    /* max-width: 500px; */
}

h1 {
    
    font-size: 2.9rem;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    /* margin-bottom: 30px; */
}

.resseler_woi_v1_gradient-text {
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.resseler_woi_v1_features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resseler_woi_v1_feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.resseler_woi_v1_feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.resseler_woi_v1_icon-promo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.resseler_woi_v1_icon-growth {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.resseler_woi_v1_feature-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

.resseler_woi_v1_feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.resseler_woi_v1_feature-text p {
    font-size: 18px;
    color: #8892a6;
    line-height: 1.5;
}

.resseler_woi_v1_cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a73e8;;
    color: white !important;
    padding: 9px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 30px;
    transition: transform 0.2s;
    border: none;
}

 
.resseler_woi_v1_image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 500px;
}

.resseler_woi_v1_image-wrapper {
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.resseler_woi_v1_image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resseler_woi_v1_image-wrapper:nth-child(1) {
    background: #e3f2fd;
    border-top-left-radius: 28%;
}

.resseler_woi_v1_image-wrapper:nth-child(2) {
    background: #f3e5f5;
    border-radius: 50%;
}

.resseler_woi_v1_image-wrapper:nth-child(3) {
    background: #fce4ec;
    border-radius: 0 0 28% 28%;
}

.resseler_woi_v1_image-wrapper:nth-child(4) {
    background: #e8f5e9;
    border-radius: 0 28% 28% 28%;
}


@media (max-width: 1024px){
    .resseler_woi_v1_container{
        padding: 20px;
    }.resseler_woi_v1_content{
        padding: 20px;
    }.resseler_woi_v1_image-grid{
        padding: 20px;
    }.ressellerwoi4-shell{
        padding: 12px !important;
    }
} 


@media (max-width: 968px) {
    .resseler_woi_v1_container {
        flex-direction: column;
        gap: 4px;
    }

    h1 {
        font-size: 36px;
    }

    .resseler_woi_v1_image-grid {
        max-width: 400px;
    }.resseler_woi_v1_container{
        margin-top: 60px !important;
        padding: 20px;
    }.resseler_woi_v1_content{
        padding: 20px;
    }.resseler_woi_v1_image-grid{
        padding: 15px;
    }.resseler_woi_v1_cta-button{
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

 
 .resselerwoi4-card-img {
    width: 100%;       
    max-width: 100%;  
    height: auto;       
    display: block;     
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 13px;
    overflow: hidden;    
}

.resselerwoi4-card-img img {
    width: 100%;
    height: 27vh;
    display: block;
    object-fit: cover;
}


@media (max-width: 768px){
  .resselerwoi4-card-img{
    display: none;
  }.ressellerwoi4-left{
      display: none !important;
  }.ressellerwoi4-shell{
    padding: 10px !important;
  }

}

.ressellerwoi4-shell{
     padding: 65px;

   
   background: linear-gradient(135deg, #ffffff, #a3c4f3);

   border-radius: 32px;
  transition: background 0.3s ease;
}

 .ressellerwoi4-field[type="file"]::-webkit-file-upload-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5));
    color: #000;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 2px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ressellerwoi4-field[type="file"]::-moz-file-upload-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.5));
    color: #000;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

 .ressellerwoi4-field[type="file"]::-webkit-file-upload-button:hover,
.ressellerwoi4-field[type="file"]::-moz-file-upload-button:hover {
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,0.7));
}
